
fcarvalho4
uniGUI Subscriber-
Content Count
119 -
Joined
-
Last visited
-
Days Won
8
Content Type
Profiles
Forums
Calendar
Everything posted by fcarvalho4
-
-
https://docs.google.com/a/[DOMINIO]/viewer?url=[FILE_URL]
-
Sorry, I uploaded the wrong zip file! UniStringGrid.zip
-
unigui ver 1.90.0.1509!
-
stringGrid.mp4
-
I confirm! Try to use the UniGStringGrid Temp or an ArrayMatrix. Delete the column and then rewrite stringrid without this column! An example attached! UniStringGrid.zip
-
procedure TMainForm.btn1Click(Sender: TObject); begin UniStringGrid1.BeginUpdate; try UniStringGrid1.Columns.Delete(9); UniStringGrid1.ColCount := UniStringGrid1.ColCount - 1; finally UniStringGrid1.EndUpdate; end; end;
-
procedure TMainForm.btn1Click(Sender: TObject); begin UniStringGrid1.BeginUpdate; try UniStringGrid1.Columns.Delete(3); UniStringGrid1.ColCount := UniStringGrid1.ColCount - 1; finally UniStringGrid1.EndUpdate; end; end;
-
Many thanks!
-
responsive Design Question: Placing TuniPanels
fcarvalho4 replied to erich.wanker's topic in General
try layout column approach! -
OK, in 1.90 version! Thnks
-
I can't find this property in mainmodule!
-
servermodule.title
-
Knowledge to share Unipanel.UniEvents function beforeInit(sender, config) { sender.setBodyStyle('opacity','0.6'); }
-
I produced an example responvise like TMS sample. Responsive.zip
-
you must use the ExtEvent - added function added(sender, container, pos, eOpts) { sender.addCls('btAzul'); }
- 24 replies
-
- unimbutton
- color
-
(and 1 more)
Tagged with:
-
or in, servermodule.customCSS input[type=text]:focus, textarea:focus { box-shadow: 0 0 7px rgba(81, 203, 238, 1); border: 2px solid rgba(81, 203, 238, 1); border-radius: 2px; } input[type=password]:focus, textarea:focus { box-shadow: 0 0 7px rgba(81, 203, 238, 1); border: 2px solid rgba(81, 203, 238, 1); border-radius: 2px; } input[type=combobox]:focus, textarea:focus { box-shadow: 0 0 7px rgba(81, 203, 238, 1); border: 2px solid rgba(81, 203, 238, 1); border-radius: 2px; } input[type=checkbox]:focus, textarea:focus { box-shadow: 0 0 7px rgba(81, 203, 238, 1); b
-
Great thanks!
-
Shooting heard in Ankara, military jets & helicopters flying over city
fcarvalho4 replied to rencarnacion's topic in General
Take care Farshad! -
Your webapp is great, thanks to unigui! Congratulation
-
Hello, try use uniFrame instead of uniForm.
-
I use the extended events. You choose! ClientEvents -> UniEvents function beforeInit(sender, config) { Ext.apply(sender,{ allowBlank:false, vtype:'email', msgTarget : 'side' } ); }