Jump to content

[mobile] PhoneBook mobile app


mhmda

Recommended Posts

  • 11 months later...

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!

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

  • 2 months later...
  • 1 year later...
  • 6 months later...

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 ?

Link to comment
Share on other sites

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>'+
Link to comment
Share on other sites

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 :-)

Link to comment
Share on other sites

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.
Link to comment
Share on other sites

  • 1 year later...
  • 6 months later...
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?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...