Jump to content

rvenky20001

Members
  • Posts

    45
  • Joined

  • Last visited

  • Days Won

    2

rvenky20001 last won the day on November 23 2012

rvenky20001 had the most liked content!

rvenky20001's Achievements

Newbie

Newbie (1/4)

6

Reputation

  1. I don't see the property in the object inspector. Can you please direct me where I need to do this ? thanks Venkatesh
  2. The combobox shows available values after you enter 4 char. Is it possible to reduce it to 1 or whatever no. we want Venkatesh
  3. How do I add a new record to a grid. If there are no records in the table then on enter of the grid it should add a new record. if there are records on the last record if I push the downarrow it should add a new record. tried this code in the onenter event of the grid but it did not work if TUniDBGrid(Sender).datasource.dataset.active then begin if (TUniDBGrid(Sender).datasource.dataset.RecordCount = 0) then TUniDBGrid(Sender).datasource.dataset.append; end; Secondly does estjs 4.x support editing of the cell without double clicking on it ? If so how do I achieve it. Venkatesh
  4. Websocket components are available for delphi Check this out http://www.esegece.com/websockets/ It would be great if we can adopt this in uniqui.
  5. Very nice work. Thanks for showing us what all Unigui is capable of doing. And this is just the beginning. We have miles to go starting with the next release .90 Venkatesh
  6. It will be really great if Farshad can give us a clue/list of what all are being covered in the .90 update. We all know it is going to be extjs 4.x but what will the newest and greatest unigui will have in it. The suspense is really killing me
  7. This is available in Sencha using jwebsocket. Check this out
  8. By looking at the view source in the Browser I was able to identify the component and then resolve the issue. Thanks
  9. I redid the test project from scratch and it worked. Thanks
  10. rvenky20001

    Themes

    Checked this out. What this give me is a html page onto which I cannot put any of the unigui components like unilabel, uniedit. What it can load is pure html Venkatesh
  11. The lookupcombo is the key field. On exit of the field, I normally check the database if the key field exists In case it exists then the data is available for editing else a new record is appended so that the user can add the new record. Client event function OnBlur(sender) { ajaxRequest(sender,'checkuserid',['muserid='+Fmusermas.muserid.getValue()]); } The Ajax Event procedure TFmusermas.museridAjaxEvent(Sender: TComponent; EventName: string; Params: TStrings); var muserid:string ; ps:integer; begin if EventName = 'checkuserid' then begin muserid:= Params.Values['muserid']; ps:= pos('-',muserid); if ps > 0 then muserid := trim(copy(muserid,1,ps-1)); CheckUserID(muserid); end; end; Currently I have resolved the issue by checking for the '-' and extracting the key field.
  12. If login is successful, it creates the mainmenu items based on his user profile. I disabled that process and still the error is thrown. So the issue is not with the Mainfrom routine.
  13. I have the main form call a user login form in the main form show event. Once the authentication is done I get the attached error. How do I identify which component is giving the error. I tried stepping through the code in the debugger but I am not able to identify. Venkatesh
  14. When I have multiple fields in the listfield propery in the LookupCombobox, in the Normal Desktop mode, I am able to pickup the value selected by accessing the keyvalue property. But in webmode , both the fields with a hiphen is picked up when I use the getValue() function. How can I get only the keyvalue in the Webmode when I am calling a ajaxRequest with the current value as one of the parameters in the Onblur event ? Venkatesh
×
×
  • Create New...