Jump to content

fcarvalho4

uniGUI Subscriber
  • Posts

    119
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by fcarvalho4

  1. https://docs.google.com/a/[DOMINIO]/viewer?url=[FILE_URL]
  2. Sorry, I uploaded the wrong zip file! UniStringGrid.zip
  3. 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
  4. procedure TMainForm.btn1Click(Sender: TObject); begin UniStringGrid1.BeginUpdate; try UniStringGrid1.Columns.Delete(9); UniStringGrid1.ColCount := UniStringGrid1.ColCount - 1; finally UniStringGrid1.EndUpdate; end; end;
  5. procedure TMainForm.btn1Click(Sender: TObject); begin UniStringGrid1.BeginUpdate; try UniStringGrid1.Columns.Delete(3); UniStringGrid1.ColCount := UniStringGrid1.ColCount - 1; finally UniStringGrid1.EndUpdate; end; end;
  6. I can't find this property in mainmodule!
  7. Knowledge to share Unipanel.UniEvents function beforeInit(sender, config) { sender.setBodyStyle('opacity','0.6'); }
  8. I produced an example responvise like TMS sample. Responsive.zip
  9. you must use the ExtEvent - added function added(sender, container, pos, eOpts) { sender.addCls('btAzul'); }
  10. 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); border: 2px solid rgba(81, 203, 238, 1); } input[type=date]:focus, textarea:focus { box-shadow: 0 0 7px rgba(81, 203, 238, 1); border: 2px solid rgba(81, 203, 238, 1); border-radius: 2px; }
  11. Your webapp is great, thanks to unigui! Congratulation
  12. Hello, try use uniFrame instead of uniForm.
  13. I use the extended events. You choose! ClientEvents -> UniEvents function beforeInit(sender, config) { Ext.apply(sender,{ allowBlank:false, vtype:'email', msgTarget : 'side' } ); }
×
×
  • Create New...