
DEV_THS
uniGUI Subscriber-
Content Count
37 -
Joined
-
Last visited
-
sorry, I no used this component, but how I set URL parameter ? I have a string with base64, how a I pass this ?
-
Hi, I need to show pdf (report) generate from another app, this app generate base64 application/pdf Is there any way to show inside htmlframe ? thanks
-
worked correctly. thanks
-
I already tried the refresh method and it didn't work either
-
UniTreeMenu1.Items.Clear () does not work. after this command the menu still shows the items on the screen I need this feature because the menu is dynamic and is loaded according to database.
-
when I run TUniFileUpload's Execute method, it opens me to a screen of TUniFileUpload itself which is a non visual component, so I can't know how to handle his css. all of components IDs is auto generated and if i change some css with classname can update css of other buttons because the name of classes are the same.. Would anyone have any suggestions?
-
- unigui
- tunifileupload
-
(and 1 more)
Tagged with:
-
Yes, my problem is that I do not create the columns, they are created dynamically when I open the dataset, In this case, I'll need to create them to set this property of my column when I open the dataset, or at some point I'll have to run through the columns to make the command. UniDBGrid1.JSInterface.JSAssign ('hideable', [False], UniDBGrid1.Columns [1] .JSColumn); but I'm going to try to do the best I can here to stay cool ... Thanks a lot for the help.
-
DEV_THS started following TUniDBGrid and Customize Sort Menu
-
Sherzod, how are you? Could you help me on this?
-
UniEdit ClientEvents UniEvents call procedure in custom component
DEV_THS replied to FabioMorcillo's topic in General
okay ... let me try to explain it directly ... sometimes it gets a little easier, my problem is a little confusing indeed! lol but the following is happening. I have a component that inherits from a TuniDateTimePicker and within this component I have a Subcomponent of type TUniEdit. when I create my TuniDateTimePicker, I also create my TUniEdit I hedge an event on his OnChange. everything works fine, but when I upload the application and make a change in my TUniEdit the OnChange event that I created in the create is not triggered. and I need him to go through this ev -
UniEdit ClientEvents UniEvents call procedure in custom component
DEV_THS replied to FabioMorcillo's topic in General
Sherzod, I'm sorry, but did you come to understand my problem? -
UniEdit ClientEvents UniEvents call procedure in custom component
DEV_THS replied to FabioMorcillo's topic in General
I got to have a similar case, where I managed to solve this way, it was a button that was also a subcomponent and when it was clicked the click event was not triggered. procedure TPLUniEdit.LoadCompleted; begin inherited; TUniForm(Self.OwnerForm).UniSession.AddJS('document.getElementById("'+ self.Button.JSControl.Id +'").addEventListener("click", function() {ajaxRequest(' + Format('%s.%s', [self.OwnerForm.Name, self.Name]) + ', ''Search'', { name: ''teste'', width: ''01''} );});'); end; procedure TPLUniEdit.JSEventHandler(AEventName: string; AParams: TUn