• kesso
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 3
    Replies
Hi guys,

We are trying to build iOS apps that support 64 bits using the SDK, but it looks like the SDK and its dependencies haven't been updated for 64 bits yet.

Do you have a timeframe on when the SDK will support 64 bits? Our internal apps depend on this, and we want to take full advantage of the iPhone 5s and the iPad Air / iPad mini with Retina.

I looked at the 3rd party libraries, and it seems like those haven't been updated in months. Would you consider moving away from those 3rd party libraries, if they aren't updated?

Thanks!
  • March 18, 2014
  • Like
  • 1

 

 

 

Hi friend's

,
I have custom field named hello__c  and a dummy controller class named mycontroller1.when the page loads it has hello__c field and a cancel button .All I am trying to do when I click on  cancel button I should be able to show alert to the user  that hello__c field has been left empty.

 

I have created function verify in which I am extracting the value from the hello __c and then I am checking the length of the data in the field .If length is zero then a user should  see an alert box .

 

All the above given things I am trying is not working.Can somebody please help.

 

 

<apex:page controller="mycontroller1">
   
    <apex:form >
    
      <script type ="text/javascript">
  function verify()
  {
  var string;
  string=document.getelementbyid('n').value;
    document.write('the value in the variable s is'+string);
  if(string.length==0)
  {
 
  Alert('U have left field blank');
  return false;
  }
  }
  </script>
     <apex:pageBlock Title="Great">
    <apex:pageBlockButtons >  <apex:commandButton action="{!cancel}" value="Cancel" onclick="return verify()" immediate="true"/></apex:pageBlockButtons>
    <apex:pageblocksection title="Part of greatness">
     <apex:inputField id="N" value="{!account.Hello__c}"/>
 
    </apex:pageblocksection>
    </apex:pageBlock>
    </apex:form>
   </apex:page>

 

 

public with sharing class mycontroller1 {
Account account;
    public PageReference cancel() {
        return null;
    }
    
    public Account getAccount() {
if(account == null) account = new Account();
return account;
}

}

 

 

 

 

  • January 22, 2012
  • Like
  • 0