Administrators Farshad Mohajeri Posted December 17, 2014 Administrators Posted December 17, 2014 Nice app. Thank you for sharing. BTW, you can also use a TUniLoginForm . Quote
Mohammed Nasman Posted December 18, 2014 Posted December 18, 2014 Great demo, Good job Mohammed ;-) Quote
DFong Posted November 18, 2015 Posted November 18, 2015 Nice app. Thank you for sharing. BTW, you can also use a TUniLoginForm . When I add a TUniLoginForm to my mobile project, the Login form does not get displayed. Is there anything else I need to set to activate the login form for a mobile web app? Thanks! Quote
DFong Posted November 18, 2015 Posted November 18, 2015 When I add a TUniLoginForm to my mobile project, the Login form does not get displayed. Is there anything else I need to set to activate the login form for a mobile web app? Thanks! My mistake...I was adding in the Desktop version of a LoginForm to my mobile project, not the mobile version. Quote
Wilton Ergon Posted February 13, 2016 Posted February 13, 2016 because I'm not allowed to download the file? Quote
Sherzod Posted February 13, 2016 Posted February 13, 2016 because I'm not allowed to download the file? Hi, Please visit here: http://forums.unigui.com/index.php?/topic/6291-important-announcement/&do=findComment&comment=32086 Best regards. Quote
pro_imaj Posted February 15, 2016 Posted February 15, 2016 Can not find the following files! [dcc32 Fatal Error] uniGUI17Core.dpk(30): E2225 Never-build package 'rtl' must be recompiled [dcc32 Fatal Error] mMsoftEdit.dpk(37): E2202 Required package 'uniGUI17Core' not found Quote
MOGSY Posted March 19, 2018 Posted March 19, 2018 Can not find the following files! [dcc32 Fatal Error] uniGUI17Core.dpk(30): E2225 Never-build package 'rtl' must be recompiled [dcc32 Fatal Error] mMsoftEdit.dpk(37): E2202 Required package 'uniGUI17Core' not found Quote
andyhill Posted March 19, 2018 Posted March 19, 2018 Mohammad, I downloaded your code as I wanted to check out your components. It will not compile with Tokyo 10.2 ? {$IMPLICITBUILD OFF} rtl must be recompiled. I changed all *17* references to *25* references. It now says 'Cannot compile - unimNumberEdit missing' ? I changed unimNumberEdit to unimEdit, uniDBEdit It now compiles - please advise if my changes are acceptable. ALSO I have asked for help elsewhere re Mobile Calendar (UniGUI Mobile does not have one ?) and I even supplied touch code from my research - would you be kind enough to help me make this happen ? Quote
andyhill Posted March 27, 2018 Posted March 27, 2018 Mohammad, With your config.itemTpl, How can I read a float value (say hours.minutes) and paint field {1} accordingly as 1="01:00 am", 14.30 = "02:30 pm" etc. ? '<td style="padding-top:4px;padding-left:10px;" width="16px">'+ '<image src="images/list/clock.png" height="16" width="16"/></td>'+ '<td style="font-size:15px;padding-top:3px;padding-left:8px;color:#535454;">{1}</td>'+ Quote
mhmda Posted March 27, 2018 Author Posted March 27, 2018 config.itemTpl= new Ext.XTemplate( '<table>'+ '<tr>'+ '<td>{[this.displayDate(values)]}</td>'+ '</tr>'+ '</table>', { displayDate: function(values) { return Ext.Date.format(values[3],'d-m-Y'); } } ); Not tested :-) Quote
andyhill Posted March 28, 2018 Posted March 28, 2018 In harmony with the new layout, how can I make the ">" (<img src="images/list/file5.png" style="position:absolute;right:15px;top:55px;"/>) emulate a DiscloseButton Click ? Quote
andyhill Posted March 29, 2018 Posted March 29, 2018 Mohammed, I am having trouble with the TUnimDBListGrid Refreshing (I change the data and issue a refresh but old data still shows), can you please advise - Thanks. procedure TCalendarmForm.MyDateChangeValue(Sender: TObject); begin if ByPassFlag = True then Exit; ////////////////////////////////////////////////////////////////////////////// ListGrid.BeginUpdate; UniMainModule.tblCart.Close; DateTimeToString(DateStr, 'yyyy-mm-dd', MyDate.Date); BookingDateStr:= '(BookingDate = DATE '+Chr(39)+DateStr+Chr(39)+')'; UniMainModule.tblCart.Filter:= BookingDateStr; UniMainModule.tblCart.Filtered:= True; UniMainModule.tblCart.Open; ListGrid.EndUpdate; UniSession.AddJS(CalendarmForm.ListGrid.JSName+'.refresh;'); ////////////////////////////////////////////////////////////////////////////// end; If I leave the form (via grid row Disclose Button) and then return via new form's Close Button - the new data shows up ? I tried UniSession.Synchronize; after Refresh but it makes no difference. Please advise. Quote
robinhodemorais Posted November 12, 2019 Posted November 12, 2019 I can't install on version 1513 [dcc32 Fatal Error] uniGUI17m.dpk (29): E2225 Never build package 'rtl' must be recompiled [dcc32 Fatal Error] mMsoftList.dpk (37): E2202 Required package 'uniGUI17m' not found Quote
x11 Posted May 21, 2020 Posted May 21, 2020 On 3/27/2018 at 2:15 PM, mhmda said: config.itemTpl= new Ext.XTemplate( '<table>'+ '<tr>'+ '<td>{[this.displayDate(values)]}</td>'+ '</tr>'+ '</table>', { displayDate: function(values) { return Ext.Date.format(values[3],'d-m-Y'); } } ); Not tested :-) please, and how add button with click? Quote
mhmda Posted May 22, 2020 Author Posted May 22, 2020 like in html, add div with onclick event points to your js function Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.