Jump to content

ldb68

uniGUI Subscriber
  • Posts

    177
  • Joined

  • Last visited

  • Days Won

    13

Everything posted by ldb68

  1. Is possible to disable lines (vertical and/or horizontal) in a UniDbGrid? thanks
  2. As mentioned several times Raudus generates a virtually single-user application that makes no sense as a web application. UniGUI need only some speed optimization (extjs4) to be perfect.
  3. As for the ADO sample I made a simple sql manager for sqlite database. Sqlite is a very fast embedded database (I get 60000 insert / second on table in test database attached). Attached also sikav3 vcl for sqlite database. Search google for complete sikav3 package with demo (has a simple desktop db manager). AjaxSqlite.zip
  4. I make a db web application with almost all standard compoment used on Iphone 3-4. All work correctly. Ipad 2 use a more recent Safari browser so I think there's no problem. Safari browser full support java script and a unigui application is a javascript application.
  5. Only if text have <br> tags I think. Without text is cutted with ....
  6. The project is a simple sql manager using ADO compoment (eg. yuo can use any database via odbc connection). It show a tree with database tables. It build the sql statement for selecting rows. You can save/edit/delete row. You can build insert/update query. Rudimental autofit colunn show. In the same isapi / exe folder add a "dsn.ini" text file with string connection for the database, es. Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=casavalentina;Data Source=HOME-PC\SQLEXPRESS;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=HOME-PC;Use Encryption for Data=False;Tag with column collation when possible=False; AjaxSQL.zip
  7. ldb68

    Tab key, disable??

    Dosn't work on Google Crome and only work with edit box (grid, checkbox ecc. accept tab). tnks
  8. I can compile and install it on Delphi 2007. When open demo or add the component to a uniguidemo the browser dosn't load the page.
  9. I agree. Unigui is more professional. Radus has more gadget but I think is only a question of time. When Farshad has finished the core library more component will be added making UniGUI the best Delphi Ajax WEB framework!
  10. Not working with Delphi 2007 and last unigui vcl I hope Farshad can add this component directly to the library making it compatible with all delphi version
  11. Added above code in MainForm.Script without // but application dosn't load inside browser. If I remove the code it load correctly! What I'm wrong?
  12. ldb68

    Cell grid position

    I think is sufficient. I will try to show a panel with a list near this position when user click on a cell to enter some data.
  13. ldb68

    Cell grid position

    Yes. I need to show a panel near the cell with some input option (waiting for a combobox in the grid )
  14. How do I know when I click on a cell of a grid the position of the mouse in order to display a window / panel for the selection of values ​​to enter?
  15. You must use OnDrawColumnCell event to change field value to show an images. es. procedure TMainForm.UniDBGrid2DrawColumnCell(Sender: TObject; ACol, ARow: Integer; var Value: string; Column: TUniDBGridColumn; Attribs: TUniCellAttribs); begin if Column.FieldName= 'foto' then begin Value:= '<a href="/images/'+ Value + '" target="_blank">'+ 'open' +'</a>'; end else if Column.FieldName= 'preview' then begin Value:= '<img src="/images/preview.jpg">'; end end; value= image name
  16. Confirm that on Motorola with Android 2.2, Nokia 5800 with Symbian v.5, iPhone 3 and 4, the native browser load correctly unigui application.
  17. No. I have made many test on lan/wan with many browser. I newer get this error locally. After four day only two user (the first day i published the application) got this error. I make a forced Edit/Post of data on every tabsheet change to prevent loss data.
  18. The error is in the click event of "End" button. Almost all edit control are dbware. Only when click on "END" button put table (AdoQuery) in Edit Mode, save some data non dbware and as last make a post. try UniMainModule.tbDomande.Edit; ...... ...... // save UniMainModule.tbDomande.Post; except On E:Exception do begin Showmessage('tbDomande ' + '<br>'+ E.Message); end; end; See attached user foto error. thanks
  19. I started 3 days ago a first project for the collection of data about iPhone sales. The entry is performed with iPhone via UMTS by 30 users. Users enter 30-40 questionnaires at day with some photos. The administrator's can view data and make some report in excel. For now, the only criticism is about the little SLOW interface (iPhone3 and iPhone4). I think that UniGUI with EXT JS 4 will be will be much faster. Twice user get the error "cannot make this operation on a closed dataset " even though before making the post I start the edit on dataset. I assume user had lost internet connection. The application is compiled and installed as ISAPI under IIS 6 (windows 2003). Database MS SQL Server with ADO connection. I have read in forums that there are problems with session's cache under IIS 6. Confirm that? thnks
  20. ldb68

    Forum mock-up

    Only way for merging cell seems using Pivot Grid. You can check for sample here. http://dev.sencha.com/deploy/ext-3.3.0/examples/pivotgrid/people.html http://www.mlynn.org/2011/01/wp-extjs-pivot-example/ tnks
  21. ldb68

    Forum mock-up

    Is there a way to merge cells in TUniStringGrid?
  22. Is there a way to attach more then ONE control to a TUniScreenMask?
  23. Tested on mobile UMTS internet key with Crome NEW dll 87 requests | 383.56KB transferred | (onload: 13.20s, DOMContentLoaded: 9.25s) OLD dll 87 requests | 1.28MB transferred | (onload: 22.58s, DOMContentLoaded: 18.62s)
×
×
  • Create New...