Click here to Skip to main content
15,899,026 members

Comments by srinivas vanka (Top 5 by date)

srinivas vanka 4-May-18 10:12am View    
Los , that was an awesome but using this I could not traverse through the table result as I will five the key to get the value for example in the given pdf if i give T1.H1 the value I should get is 1. ANd so on.. So how to achive this is my problem..
srinivas vanka 4-May-18 8:16am View    
Hi richard , am trying to read the tables formatted content which will have the invoice data for suppose for different vendors into C# data tables for find the values of particular fields
srinivas vanka 15-Feb-16 7:37am View    
Thanks for your reply,,
Actually I am following the approach properly as putting the css on top and scripts at the bottom of the page.

I am giving the coding style over here

<html>
<head>

<!-- CSS Links -->
</head>
<body>
<form>
<input name="input1">
<input name="input2">
<input name="input3">
</form>

<script>
$(document).ready(function(){
here Iam putting the validations on the input fields with the help of bootstrap
like

$('#defaultForm').bootstrapValidator({
message: 'This value is not valid',
feedbackIcons: {

},
fields: {
input1: {
verbose: false,
message: 'The username is not valid.',
validators: {
notEmpty: {
message: 'The username is required and can\'t be empty.'
},
stringLength: {
min: 6,
}
});

});
</script>
</body>

</html>


so the inputs which were linked with bootstrap validators are not rendering until the scripts are being loaded onto browser.

:( it is taking morethan 6 secs to load

thanks
srinivas vanka 23-Jun-15 9:51am View    
anjana ,, actually my input would be in the form of PDF file and that is scanned file.so am unable to search through it. so that i want to convert those files into normal pdf files,
srinivas vanka 23-Jun-15 9:26am View    
do have any link which has the sample code