{"id":19981,"date":"2022-11-08T08:58:03","date_gmt":"2022-11-08T03:28:03","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/"},"modified":"2022-11-08T08:58:03","modified_gmt":"2022-11-08T03:28:03","slug":"solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/","title":{"rendered":"[Solved] Javafx TableView change Font of an Column programmatically NOT-CSS [duplicate]"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-48270025\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"48270025\" data-parentid=\"48269446\" data-score=\"4\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>Here is a sample app that demonstrates how to do this.<\/p>\n<p>This example uses <code>setTextFill()<\/code> and <code>setFont()<\/code> inside the <code>setCellFactory<\/code> method.<\/p>\n<pre><code>import javafx.application.Application;\nimport javafx.beans.property.SimpleStringProperty;\nimport javafx.collections.FXCollections;\nimport javafx.collections.ObservableList;\nimport javafx.event.ActionEvent;\nimport javafx.geometry.Insets;\nimport javafx.scene.Group;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.TableCell;\nimport javafx.scene.control.TableColumn;\nimport javafx.scene.control.TableView;\nimport javafx.scene.control.cell.PropertyValueFactory;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.VBox;\nimport javafx.scene.paint.Color;\nimport javafx.scene.text.Font;\nimport javafx.stage.Stage;\nimport javafx.util.Callback;\n\n\npublic class Main extends Application {\n\n    private final TableView&lt;Person&gt; table = new TableView&lt;&gt;();\n    private final ObservableList&lt;Person&gt; data =\n            FXCollections.observableArrayList(new Person(\"A\", \"B\"));\n    final HBox hb = new HBox();\n\n    public static void main(String[] args) {\n        launch(args);\n    }\n\n    @Override\n    public void start(Stage stage) {\n        Scene scene = new Scene(new Group());\n        stage.setWidth(450);\n        stage.setHeight(550);\n\n\n        TableColumn firstNameCol = new TableColumn(\"First Name\");\n        firstNameCol.setMinWidth(100);\n        firstNameCol.setCellValueFactory(\n                new PropertyValueFactory&lt;&gt;(\"firstName\"));\n        \/\/Newly added code\n        firstNameCol.setCellFactory(new Callback&lt;TableColumn, TableCell&gt;() {\n\n            @Override\n            public TableCell call(TableColumn param) {\n                return new TableCell&lt;Person, String&gt;() \n                {\n                    @Override\n                    public void updateItem(String item, boolean empty) {\n                        super.updateItem(item, empty);\n\n                        if(isEmpty())\n                        {\n                            setText(\"\");\n                        }\n                        else\n                        {\n\n                            setTextFill(Color.RED);\n                            setFont(Font.font (\"Verdana\", 20));\n                            setText(item);\n                        }\n                    }\n                };\n            }\n        });\n\n\n\n        TableColumn lastNameCol = new TableColumn(\"Last Name\");\n        lastNameCol.setMinWidth(100);\n        lastNameCol.setCellValueFactory(\n                new PropertyValueFactory&lt;&gt;(\"lastName\"));\n        lastNameCol.setCellFactory(new Callback&lt;TableColumn, TableCell&gt;() {\n\n            @Override\n            public TableCell call(TableColumn param) \n            {\n                return new TableCell&lt;Person, String&gt;() \n                {\n                    @Override\n                    public void updateItem(String item, boolean empty) {\n                        super.updateItem(item, empty);\n\n                        if(isEmpty())\n                        {\n                            setText(\"\");\n                        }\n                        else\n                        {\n\n                            setTextFill(Color.BLUE);\n                            setFont(Font.font (\"Verdana\", 20));\n                            setText(item);\n                        }\n                    }\n                };\n            }\n        });\n\n        table.setItems(data);\n        table.getColumns().addAll(firstNameCol, lastNameCol);\n\n        final Button addButton = new Button(\"Add\");\n        addButton.setOnAction((ActionEvent e) -&gt; {\n            data.add(new Person(\"Z\",\"X\"));\n         });\n\n        hb.getChildren().addAll(addButton);\n        hb.setSpacing(3);\n\n        final VBox vbox = new VBox();\n        vbox.setSpacing(5);\n        vbox.setPadding(new Insets(10, 0, 0, 10));\n        vbox.getChildren().addAll(table, hb);\n\n        ((Group) scene.getRoot()).getChildren().addAll(vbox);\n\n        stage.setScene(scene);\n        stage.show();\n    }\n\n    public static class Person {\n\n        private final SimpleStringProperty firstName;\n        private final SimpleStringProperty lastName;\n\n        private Person(String fName, String lName) {\n            this.firstName = new SimpleStringProperty(fName);\n            this.lastName = new SimpleStringProperty(lName);\n        }\n\n        public String getFirstName() {\n            return firstName.get();\n        }\n\n        public void setFirstName(String fName) {\n            firstName.set(fName);\n        }\n\n        public String getLastName() {\n            return lastName.get();\n        }\n\n        public void setLastName(String fName) {\n            lastName.set(fName);\n        }\n    }\n} \n<\/code><\/pre>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-Javafx-TableView-change-Font-of-an-Column-programmatically-NOT-CSS.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-Javafx-TableView-change-Font-of-an-Column-programmatically-NOT-CSS.png\" alt=\"enter image description here\"><\/a><\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">2<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Javafx TableView change Font of an Column programmatically NOT-CSS [duplicate] <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] Here is a sample app that demonstrates how to do this. This example uses setTextFill() and setFont() inside the setCellFactory method. import javafx.application.Application; import javafx.beans.property.SimpleStringProperty; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.event.ActionEvent; import javafx.geometry.Insets; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.TableCell; import javafx.scene.control.TableColumn; import javafx.scene.control.TableView; import javafx.scene.control.cell.PropertyValueFactory; import javafx.scene.layout.HBox; import javafx.scene.layout.VBox; import javafx.scene.paint.Color; import &#8230; <a title=\"[Solved] Javafx TableView change Font of an Column programmatically NOT-CSS [duplicate]\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/\" aria-label=\"More on [Solved] Javafx TableView change Font of an Column programmatically NOT-CSS [duplicate]\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[323,1489,1458],"class_list":["post-19981","post","type-post","status-publish","format-standard","hentry","category-solved","tag-java","tag-javafx","tag-tableview"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] Javafx TableView change Font of an Column programmatically NOT-CSS [duplicate] - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Javafx TableView change Font of an Column programmatically NOT-CSS [duplicate] - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] Here is a sample app that demonstrates how to do this. This example uses setTextFill() and setFont() inside the setCellFactory method. import javafx.application.Application; import javafx.beans.property.SimpleStringProperty; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.event.ActionEvent; import javafx.geometry.Insets; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.TableCell; import javafx.scene.control.TableColumn; import javafx.scene.control.TableView; import javafx.scene.control.cell.PropertyValueFactory; import javafx.scene.layout.HBox; import javafx.scene.layout.VBox; import javafx.scene.paint.Color; import ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-08T03:28:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-Javafx-TableView-change-Font-of-an-Column-programmatically-NOT-CSS.png\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Javafx TableView change Font of an Column programmatically NOT-CSS [duplicate]\",\"datePublished\":\"2022-11-08T03:28:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/\"},\"wordCount\":42,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-Javafx-TableView-change-Font-of-an-Column-programmatically-NOT-CSS.png\",\"keywords\":[\"java\",\"javafx\",\"tableview\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/\",\"name\":\"[Solved] Javafx TableView change Font of an Column programmatically NOT-CSS [duplicate] - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-Javafx-TableView-change-Font-of-an-Column-programmatically-NOT-CSS.png\",\"datePublished\":\"2022-11-08T03:28:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/#primaryimage\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-Javafx-TableView-change-Font-of-an-Column-programmatically-NOT-CSS.png\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-Javafx-TableView-change-Font-of-an-Column-programmatically-NOT-CSS.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Javafx TableView change Font of an Column programmatically NOT-CSS [duplicate]\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Javafx TableView change Font of an Column programmatically NOT-CSS [duplicate] - JassWeb","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Javafx TableView change Font of an Column programmatically NOT-CSS [duplicate] - JassWeb","og_description":"[ad_1] Here is a sample app that demonstrates how to do this. This example uses setTextFill() and setFont() inside the setCellFactory method. import javafx.application.Application; import javafx.beans.property.SimpleStringProperty; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.event.ActionEvent; import javafx.geometry.Insets; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.TableCell; import javafx.scene.control.TableColumn; import javafx.scene.control.TableView; import javafx.scene.control.cell.PropertyValueFactory; import javafx.scene.layout.HBox; import javafx.scene.layout.VBox; import javafx.scene.paint.Color; import ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/","og_site_name":"JassWeb","article_published_time":"2022-11-08T03:28:03+00:00","og_image":[{"url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-Javafx-TableView-change-Font-of-an-Column-programmatically-NOT-CSS.png","type":"","width":"","height":""}],"author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Javafx TableView change Font of an Column programmatically NOT-CSS [duplicate]","datePublished":"2022-11-08T03:28:03+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/"},"wordCount":42,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-Javafx-TableView-change-Font-of-an-Column-programmatically-NOT-CSS.png","keywords":["java","javafx","tableview"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/","url":"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/","name":"[Solved] Javafx TableView change Font of an Column programmatically NOT-CSS [duplicate] - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/#primaryimage"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-Javafx-TableView-change-Font-of-an-Column-programmatically-NOT-CSS.png","datePublished":"2022-11-08T03:28:03+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/#primaryimage","url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-Javafx-TableView-change-Font-of-an-Column-programmatically-NOT-CSS.png","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-Javafx-TableView-change-Font-of-an-Column-programmatically-NOT-CSS.png"},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-javafx-tableview-change-font-of-an-column-programmatically-not-css-duplicate\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Javafx TableView change Font of an Column programmatically NOT-CSS [duplicate]"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/19981","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=19981"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/19981\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=19981"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=19981"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=19981"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}