Jump to content

55143681

uniGUI Subscriber
  • Posts

    670
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by 55143681

  1. By default,the first is selected,and the cursor is positioned to the first record.
  2. Questions: 1.I know in the mobile ,UnimVideo can play videos, but,How can I play videos in desktop? 2.UnimVideo can not play *.flv files,how to do that?
  3. 1、Now,The refresh button maybe have no function,how to use the refresh function? 2、How add some code to the upper picture's refresh button?
  4. The cameras are IP camera. Maybe I nee to use java script to call the Camera Libs, How to do that? Is there any examples?
  5. 1200 UniComboBox? So many controls, But I think there will be some method to short the time. Is there some method like oracle's batch sql commit? waiting for the solution....
  6. I have some video cameras , and I want to see the video in my unigui page, how to do that?
  7. 1552: You can use UnimDBEdit1->EmptyText
  8. Sometimes,if i edit something in a form, the page will not refresh
  9. Not using the cache?How to do that?Just setup the browser? If I can do that by my code,I will chose that.
  10. In my unigui project,I want to add a function to clear the browser's cache automaticaly,how to do that?
  11. Dear: I have an unigui project. In the client side(the google browser),I have another chat tool, the chat tool can cut some screen area as a picture to the clipboard, and I want to upload the picture in the clipboard to the unigui server side, that is say:How to upload the browser-side clipboard picture to the server side? How to do that? thank you.
  12. Dear: I use the follow code to access a site, void __fastcall TMainForm::UniFormBeforeShow(TObject *Sender) { UniURLFrame1->URL="www.sohu.com"; } but ,some site give me an error,such as "www.sohu.com",the error reason is : Refused to display 'https://www.sohu.com/' in a frame because it set 'X-Frame-Options' to 'sameorigin'. some site works well,such as "https://www.sina.com.cn" why?
  13. If you set UniDBGrid->Options->dgRowNumbers to true, then UniDBGrid's first column will be serial no just like "1 2 3 4 .....", but this column does not have title, as you know, in delphi I can do that with this code: UniSession.AddJS(Self.Name+'.UniDBGrid1.columnManager.columns[0].setText("序号")'); but ,How to write the code in cbuilder?The follow code will give me some error: UniSession->AddJS(this->Name+"->UniDBGrid1->columnManager->columns[0]->setText(\"序号\")");
  14. works well and for cb: UnimScrollBox1->JSInterface->JSCall("getScrollable().scrollTo", "['top']");
  15. Just this code : if( UnimDBGrid1->Options.Contains(dgRowLines) && UnimDBGrid1->Options.Contains(dgColLines) ) { UnimDBGrid1->JSInterface->JSConfig("columnLines", "true"); UnimDBGrid1->JSInterface->JSConfig("rowLines", "true"); }
×
×
  • Create New...