thanks a lot :-)
thanks a lot for your answer :-) We use metawidget 4.2 but in this version i cannot find the @JexlAttribute, JexlInspector. I can only find JexlInspectionResultProcessor, JexlInspectionResultProcessorConfig. Can you please look it up?
Hello, First of all thank you for a great project. Now to the problem. I have a button, which i want to disable depending on the value of another element. The structure looks as following: public interface A { public static interface AA { StateEnum getState(); <- the enum value i am interested in } public static interface AB { void block(); <- Button that i have to disable. } } How can i do this? I want to make a general solution and my idea was to write an annotation with 2 values: first is the...
Hello, First of all thank you for a great project. Now to the problem. I have a button, which i want to disable depending on the value of another element. The structure looks as following: public interface A { public static interface AA { StateEnum getState(); <- the enum value i am interested in } public static interface AB { void block(); <- Button that i have to disable. } } How can i do this? I want to make a general solution and my idea was to write an annotation with 2 values: first is the...
Hello, First of all thank you for a great project. Now to the problem. I have a button, which i want to disable depending on the value of another element. The structure looks as following: interface A { interface AA { StateEnum getState(); <- the enum value i am interested in } interface AB { void block(); <- Button that i have to disable. } } How can i do this? I want to make a general solution and my idea was to write an annotation with 2 values: first is the name of the property, second is the...
Hello, First of all thank you for a great project. Now to the problem. I have a button, which i want to disable depending on the value of another element. The structure looks as following: interface A { interface AA { getState(); <- the enum value i am interested in } interface AB { block(); <- Button that i have to disable. ) } How can i do this? I want to make a general solution and my idea was to write an annotation with 2 values: first is the name of the property, second is the value. So something...