Jump to content

rvenky20001

Members
  • Posts

    45
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by rvenky20001

  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
  15. The normal UniDBlookupCombobox has two tables connected to it. One from where it looks up the details while the other to which it save the data. The UniLookupCombobox will have only the look up table attached to it while the other table will not be there. This is normally used for selection critera etc like for reports. You need to look up the customer database to select the customer for whom the report has to be generated but the selection does not have to be save to any database.
  16. rvenky20001

    Themes

    Thanks will check this out
  17. Normally in Delphi applications, only a few required forms/ data modules are kept in the autocreate and the rest are created as and when required to manage memory. But In Unigui I found that all the forms/ frames are kept in autocreate. Will this not increase the session objects and the server memory usage ? Is this the preferred way ? It has also been mentioned elsewhere in the forum that for a decent app a load of 100-150 users / web server is ok. Does is match with a similar ASP .net app too ? Venkatesh
  18. rvenky20001

    Themes

    All the themes that are available make the application look like a desktop application which is ok in a lot of cases where we are migration our original desktop app to the web. But there are also places where in I would like to use UNIGUI to create proper web pages with DB integration. Are there any themes available or is there a way to make the WEBsite look like a normal website rather than a desktop application in case it is necessary ? Venkatesh
  19. I Could not find a uniLookupComboBox. There is only a unidbLookupComboBox. Can a UniLookpCombobox be included ? Venkatesh
  20. rvenky20001

    Showmodal

    Is it possible to have Uniforms show up as modal forms and return back a value like mrok or mrcancel as in Delphi TForms ?
  21. It is set to true. I am having problems with Dbexpress. With ADO it is working fine.
  22. What is the right way to connect to mssql using dbxpress. The connection works in at design time. I have already put sqlncli10.dll, dbxmss.dll,midas.dll,dbxdrivers.ini,dbxconnections.ini in folder from where the exe is running I have complied the application as a VCL/ Standalone Server when viewed from the web, it gives dbx error: driver could not be initialized
×
×
  • Create New...