Jump to content

Can i use phone functions?


mierlp

Recommended Posts

Hi

 

I'm developing a small database tool for our festival which
contains the importend Phone numbers.

 

Is it possible to use phone dialing from a smartphone.

What i would like to is when i need someone from

the list,...click a button and the number must be dailed.

 

Can this be done with uniGui

Link to comment
Share on other sites

Look at the PhoneBook example in Demos.

 

 

In ExtEvents:

 

function itemswipe(sender, index, target, record, e, eOpts)
{
  if(e.direction=="right"||e.direction=="left")
    window.location.href="tel://"+record.get('1');  // Call the Phone Number
}

 

 

 

Regards,,

Link to comment
Share on other sites

×
×
  • Create New...