I am new to sharepoint. I have some problem with sharepoint2007. I have two list, one list contains two column. One column is Single line of text type and the other column is a lookup type. The lookup type column is related to another list.

Is this possible?

I fill some value in the Single line of text type column and press the Ok button then it can search for a value (which is fill in Single line of text type ) in lookup column if this value is present in lookup column then go next page, if not there then show an alert message value is not valid. Using JQuery or another method.

link|improve this question

50% accept rate
feedback

1 Answer

Yes, you can use CAML Query + jQuery Library for Sharepoint Web Services. In CAML if you don't set FieldRef attribute LookupId=”TRUE” it will find through Lookupvalue, e.g.

<Query>
  <Where>
    <Eq>
      <FieldRef Name='YourLookupField' />
      <Value Type='Lookup'>YourTextFromSingleLineFiels</Value>
    </Eq>
  </Where>
</Query>
link|improve this answer
hi..... <Query> <Where> <Eq> <FieldRef Name='YourLookupField' /> <Value Type='Lookup'>YourTextFromSingleLineFiels( how to get Single line of text type column value from column, it fill then check condition ) </Value> </Eq> </Where> </Query> – user633856 Dec 22 '11 at 11:29
As for me, the best way write your own custom field type( msdn.microsoft.com/en-us/library/ms446361%28v=office.12%29.aspx) override SPField.FieldRenderingControl(msdn.microsoft.com/en-us/library/…) and add your Field Rendering Control(msdn.microsoft.com/en-us/library/bb861838%28v=office.12%29.aspx) for edit mode, inherited your control from Microsoft.SharePoint.WebControls.TextField(msdn.microsoft.com/en-us/library/…). – MishaU Dec 22 '11 at 12:41
Or you can use JQuery.validate(archive.plugins.jquery.com/project/validate) for find input for your text field you can use such code $("td.ms-formbody").html().match(FieldInternalName="Your field internal name"). parentNode.find('input'), but IMHO such method isn’t good way – MishaU Dec 22 '11 at 12:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.