Jump to content

elGringo

uniGUI Subscriber
  • Posts

    434
  • Joined

  • Last visited

  • Days Won

    13

Everything posted by elGringo

  1. Delphidude and what are the main requirements for the search engines? Lets take usual site, for example this forum, as I can see written on php, so as I know search engine looks for key words, for alts of images, maybe other parameters. All this can be done with php. And all of them could be reproduced in UniGUI as I can see. And about text file - you mean sitemap? About this theme I want to say that if I can see correct - for the moment one page is one dll - it is a little bit more complicated that to create one more php file. So IDE Delphi is to create one big application, rather than many little ones working together - or am i missing?
  2. And about php file - can i create simple txt with Delphi, than save it to the IIS catalog and change extension and start. WIll it be correct?
  3. How to create php page using UniGUI on the server and opent it ? If we deploy our dll on IIS for example than -how we can create php page in the same directory or different ? -how we can open this page? Using javascript code like this? window.open('http://test.php') Lets take most simple php code like test.php <?php echo "This is my first PHP page created in UniGUI"; ?> As i understand we should create file with extension .php and put our code there. Then to put it in some directory (for exammple where our dll exists) and open it . If someone did this - please show the example. Regards,
  4. Mohammad - looks very proffesional !!! Visited your adan.co.il I think it is a good example for the ones who wants to develop on UniGui !!! Your development was faster that lets say on PHP ?
  5. Mohammad, thank you for the answer, very interesting, your variety of tasks is very wide! Especially about Website management system - is it like CMS? Does it generate new pages on the web? As for me I'm a beginner and going to buy UniGui and write my first web application about HR automatization, also I thought about WebSites on UniGui but I have some doubhts abut SEO.
  6. Any other opinions, examples? I think it is very interesting theme.
  7. Hello to Everyone! As I understand UniGui is fast growing and ineresting project for the moment. And question i'm thinking about now is - "How do you think - what is the best application area of UniGui for the moment ? " What tasks could be solved better for the moment? Could you share your experience? Let's say... Site building - ( one page could be build very fast, but limitation that i can see is SEO optimization, as I understand UniGui Application is mainly one dll file with changing content, on PHP we may have dozens of pages that is good for Search Engines, or am I missing in something ? ) Somewhere on that forum I have seen info that we can create many dll files and connect them to each other - is that good practice? iShop building - i didn't see examples on that forum in Samples but looking at MegaDemo it seems to be very possible. But SEO moment is also important for the shop. Many pages -> Many attention from the Search Engines ->Many Traffic -> Many Money -> Many Uni Gui Customers ))) Corporate Applications - I think this task could be decided with Uni GUI best of all. It usually doesn't need SEO but full of businees logics. Could you share your experience, thoughts ?
  8. Genious!!! So it means its embedded (built in) and no need to plug externally. DD thank you very much!!!
  9. I opened UniServerModule -->CustomFiles and found following files/jdigiclock/css/jquery.jdigiclock.css files/jdigiclock/lib/jquery.jdigiclock.js files/clockdemo/styles.css files/clockdemo/jquery.tzineClock/jquery.tzineClock.css files/clockdemo/jquery.tzineClock/jquery.tzineClock.js From plugin instruction we can see <link rel="stylesheet" type="text/css" href="css/jquery.jdigiclock.css" /> <script type="text/javascript" src="lib/jquery-1.3.2.min.js"></script> // <<< Lib is needed !!! <script type="text/javascript" src="lib/jquery.jdigiclock.js"></script> In UniServerModule -->CustomMeta it is empty So does anyone know where is hidden this lib jquery-1.3.2.min.js in UniGui?
  10. Hi, guys! My question is very simple but i have read Basic jQuery Example from Demos for many times but didn't find where is written <script type="text/javascript" src="lib/jquery-1.3.2.min.js"></script> In what property or event we can find such plugging to the lib? Thank you in advance !!!
  11. Привет, ты в итоге решил Вопрос с настройкой хостинга?
  12. Works!!! I don't understand this js code but it works! So solution is procedure TMainForm.UniHTMLMemo1AjaxEvent(Sender: TComponent; EventName: string; Params: TStrings); begin if EventName = 'uploadImage' then begin UniSession.AddJS('Ext.get("'+ UniHTMLMemo1.JSName +'_id-inputCmp-iframeEl").focus()'); UniFileUpload1.Execute; end; end; Theme may be closed.
  13. DD Thank you! Found something else. The reason why code didn't work sometimes was focus of UniHTMLMemo!!! When i clicked to UniHTMLMemo before clicking ImageUpload so that caret appear everything works in Chrome, Opera, FireFox!!! So i tried to change code like this procedure TMainForm.UniHTMLMemo1AjaxEvent(Sender: TComponent; EventName: string; Params: TStrings); begin if EventName = 'uploadImage' then begin UniHtmlMemo1.SetFocus; // doesn't work with that UniFileUpload1.Execute; end; end; but setfocus doesn't set focus and also webfocus, so how to set focus on UniHTML Memo so that caret would appear?
  14. Hello Delphi Developer and everyone! After time i tried to repeat an example and found that in Chrome and Opera picture uploading doesn't work. So it happens nothing when i choose file and press upload. In FF code works excellent! Also i found that in Chrome and Opera path looks like C:\fakepath\1.jpg and in FF it is just 1.jpg Does it have any influence? function initialize(sender, eOpts) is added (see attached picture); Project attached. 178_UniPictureUpload.rar
  15. That's clear now!!! So many details but it's experience. Thank you Stas and Farshad for the answers.
  16. Found decision in demo C:\Program Files (x86)\FMSoft\Framework\uniGUI\Demos\Desktop\Form Callback but for the form that i call from the main form... is the name of subForm should be the same as typeName in it's Unit? When i change the Name it shows mistake...
  17. I tried NewUniForm:=TNewUniForm.Create(Self); NewUniForm.Show(); but it doesn't work
  18. Dear all, i think it must be simple question, but anyway i cannot do that in UniGui. Normally in delphi i do this in the following way SomeForm:=TSomeForm.create(self); SomeForm.Show; but in UniGui it doesn't work... nothing happens... new Uniform doesn't show So, please show me how to do that with UniForm Regards,
  19. So, if there is some decision - please message here.
  20. Found just now - if names of the items are different (see picture) - everything is Ok, but if the same... - it selects all... What is that? Bug?
×
×
  • Create New...