Jump to content

David Oliveira

uniGUI Subscriber
  • Posts

    59
  • Joined

  • Last visited

  • Days Won

    4

David Oliveira last won the day on August 4 2019

David Oliveira had the most liked content!

1 Follower

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

1191 profile views

David Oliveira's Achievements

Member

Member (2/4)

14

Reputation

  1. good day! 

    Please, can u send me azzure theme unigui on my mail.

  2. //disable f5 of browser in one edit procedure DesabilitaF5(AObject: TObject); var PropInfoPtr: PPropInfo; begin PropInfoPtr := GetPropInfo(AObject, 'ClientEvents'); if PropInfoPtr = nil then exit; AObject := GetObjectProp(AObject, PropInfoPtr); if AObject = nil then Exit; TUniClientEvents(AObject).ExtEvents.Values['keydown'] := //FbeforeInit; 'function (sender, e, eOpts)' + sLineBreak + '{' + sLineBreak + ' if(e.keyCode == ' + IntToStr(VK_F5) +')' + sLineBreak + ' {' + sLineBreak + ' e.preventDefault();' + sLineBreak + ' }' + sLineBreak + '}'; end; //To use DesabilitaF5(EdtCodigo);
  3. Checkbox triggering and change value on focus (when navigation with enter), like that he just received the focus without changing the value. Does anyone have any suggestions? attached example Test Focus Checkbox.rar
  4. Checkbox triggering and change value on focus (when navigation with enter), like that he just received the focus without changing the value. Does anyone have any suggestions? attached example
  5. hi mr., I noticed that the license has start date and end date of subscription. What was that date? No longer be able to compile with the version you purchased? After the end, we need to buy another license?
  6. Code to Pascal, good luck! UniCalendarioPanel.ClientEvents.ExtEvents.Values['eventsrendered'] := 'function (sender, eOpts)' + '{ var curView = sender;' + ' var evtElements = Ext.select(''.ext-cal-evt'', true);' + ' if (evtElements)' + ' {' + ' Ext.each(evtElements.elements, function(eachEl) {' + ' var evtId = curView.getEventIdFromEl(eachEl);' + ' var rec = sender.getEventRecord(evtId);' + ' if (!Ext.isEmpty(rec)) {' + ' if (!Ext.isEmpty(evtId)){' + ' var pop_content = "<div id=''popup-data''><p><b>Detalles: </b>" +rec.data.Notes.replace(/\n/g, "<br />")+"</p></div>";' + ' new Ext.ToolTip({' + ' target: eachEl' + ' ,title: rec.data.Title' + // ' ,dismissDelay: 2000 // auto hide after 2 seconds' + // ' ,anchor: ''top''' + // ' ,anchorOffset: 85' + ' ,trackMouse: true' + ' ,html: pop_content' + ' }); ' + ' }' + ' }' + ' }, this);' + ' }' + '}';
  7. When we have a UNIGUI for Delphi XE7?
  8. Hi Stas, Add another component (Edit number) that will work perfectly Forgot to add, but is attached UniDBButtonNumberEdit.rar
  9. Hi, Are there any plans of integrating Unigui with Extjs 5?
  10. hi man, to use the JS events is not what intrigues me, what makes me intrigued is not possible to change the TOP and / or LEFT even if runtime
×
×
  • Create New...